Skip to content

Conversation

@Luganic
Copy link
Collaborator

@Luganic Luganic commented Jul 29, 2025

📦 Pull Request

📝 요약(Summary)

💬 공유사항 to 리뷰어

  • 필터링을 통해 와인의 취향 (종류, 가격, 별점)을 목록 페이지에 구현

  • 검색어 기능을 통해 검색 가능하게 구현

  • SearchStore 생성하여 활용

  • 조건부 .filter() 를 통해 직접 필터링

  • WineListCard.tsx (목록 카드)에 필터 기능 추가

  • WineFilter.txt에 검색할 수 있게 구현

  • searchStore.ts 로 Store 생성 및 사용

수정사항

  • 일부 수정으로 인해 충돌 가능성이 있습니다.

  • WineTypeFilter.tsx

-              onClick={() => setType(option)}
+              onClick={() => {
+                if (type !== option) setType(option);
+              }}
  • FilterModal.tsx

🗂️ 관련 이슈

📸 스크린샷

image

✅ 체크리스트

  • 빌드 및 테스트 통과
  • ESLint/Prettier 검사 통과

@vercel
Copy link

vercel bot commented Jul 29, 2025

@Luganic is attempting to deploy a commit to the 626-ju's projects Team on Vercel.

A member of the Team first needs to authorize it.

Comment on lines +37 to +39
onClick={() => {
if (type !== option) setType(option);
}}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

필터 타입 선택 시 수정한 부분 확인했습니다

@Luganic Luganic merged commit 30d1518 into codeit-part3-7:dev Jul 30, 2025
1 of 2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants